home *** CD-ROM | disk | FTP | other *** search
/ TOS Silver 2000 / TOS Silver 2000.iso / Anwendun / Pov / POVTOOLS / ATSIS / OBJETILE.POV < prev    next >
Encoding:
Text File  |  1994-08-14  |  783 b   |  46 lines

  1. // Objects tile picture for SIS
  2. // render size: 96x96
  3.  
  4. #include "colors.inc"
  5.  
  6. camera {
  7.   location  <3, 6, -6>
  8.   direction <0, 0, 1.5>
  9.   up        <0, 1, 0>
  10.   right     <1, 0, 0>
  11.   look_at   <.3, 1, 0>
  12. }
  13.  
  14. light_source { <-2, 4, -3> color White }
  15. light_source { <0, 10, 20> color White }
  16.  
  17. sphere { <-1.5, 1, 0>, 1 pigment { color Green } finish { phong 1 } }
  18.  
  19. cone {
  20.   <0, 0, 0>, 1, <0, 2, 0>, 0
  21.   pigment { color Red }
  22.   finish { phong 1 }
  23.   translate <0, 0, 2>
  24. }
  25.  
  26. torus {
  27.   1, .4
  28.   pigment { color Blue }
  29.   finish { phong 1 }
  30.   translate <1.5, .4, 0>
  31. }
  32.  
  33. sphere {
  34.   <0, 0, 0>, 500
  35.   pigment {
  36.    bozo
  37.    color_map {
  38.      [0 color Black]
  39.      [1 color White]
  40.    }
  41.    scale <80, 12, 12>
  42.    rotate z*45
  43.   }
  44.   finish { ambient 1 diffuse 0 }
  45. }
  46.